What is the main difference between shallow cloning and deep cloning of objects in java?
1990
26-Mar-2014
Sumit Kesarwani
26-Mar-2014Java supports shallow cloning of objects by default when a class implements the java.lang.Cloneable interface.
Deep cloning through serialization is faster to develop and easier to maintain but carries a performance overhead.